A minimal multi-agent system with an orchestrator, a planner, a coder, and a designer working together providing orchestration between Claude, Codex and Gemini.
Install all agents listed below into VS Code Insiders...
| Title | Type | Description |
|---|
| # based on https://github.com/AshyIsMe/plan9-rpi | |
| ############# on linux: | |
| # download latest version of 9front for rpi3/4 | |
| # adjust version number to get the available version | |
| wget http://9front.org/iso/9front-10522.pi3.img.gz | |
| gunzip 9front-10522.pi3.img.gz | |
| # copy data to memory card (at least 2GB), replace /dev/mmcblk0 with the path to your memory card |
Active Directory Exploitation Cheat Sheet: A cheat sheet that contains common enumeration and attack methods for Windows Active Directory
https://github.com/S1ckB0y1337/Active-Directory-Exploitation-Cheat-Sheet
Pentesting Network
https://book.hacktricks.wiki/en/generic-methodologies-and-resources/pentesting-network/index.html
Active Directory Methodology https://book.hacktricks.wiki/en/windows-hardening/active-directory-methodology/index.html
| ## Codebase Reality Check — Ground Truth Audit | |
| **Purpose:** Establish what IS implemented vs what was PLANNED. | |
| **Rule:** No assumptions. No inference from docs. Evidence from code + runtime only. | |
| **Anti-pattern:** Reading the PRD and assuming it matches reality. It doesn't until proven. | |
| --- | |
| ### Source of truth hierarchy |
GENERAL TODO:
| local expect = require "cc.expect" | |
| local UTFString = {} | |
| local UTFString_mt = {__index = UTFString, __name = "UTFString"} | |
| local function toUTF8(s) | |
| -- convert from ANSI if the string is invalid in UTF-8 | |
| local ss = "" | |
| local iter, invar, i = utf8.codes(s) | |
| local ok, c |
| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management |
| coins = 42, | |
| sourceId = localStorage.getItem('sourceId').split('"').join(''), | |
| deviceLogId = localStorage.getItem('deviceLogId').split('"').join(''), | |
| users = JSON.parse(localStorage.getItem('users')); | |
| users.forEach(users__value => { | |
| fetch('https://logger-lb-5.anton.app/events', { | |
| method: 'POST', | |
| 'headers': { 'Content-Type': 'application/json' }, | |
| body: JSON.stringify({ | |
| "events":[{"event":"adjustCoins","value":coins,"src":sourceId,"created":(new Date()).toISOString()}], |